fix wrong default value in ::tab-expand param spec constructor.
authorTim Janik <timj@imendio.com>
Wed, 5 Sep 2007 12:17:39 +0000 (12:17 +0000)
committerTim Janik <timj@src.gnome.org>
Wed, 5 Sep 2007 12:17:39 +0000 (12:17 +0000)
Wed Sep  5 14:15:17 2007  Tim Janik  <timj@imendio.com>

        * gtk/gtknotebook.c (gtk_notebook_class_init): fix wrong default value
        in ::tab-expand param spec constructor.

svn path=/trunk/; revision=18725

ChangeLog
gtk/gtknotebook.c

index 82e5983c184936a2f94452756c771df93574a846..adb6039da40c48486d8651e99b0f89ddd9948037 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Sep  5 14:15:17 2007  Tim Janik  <timj@imendio.com>
+
+       * gtk/gtknotebook.c (gtk_notebook_class_init): fix wrong default value
+       in ::tab-expand param spec constructor.
+
 2007-09-04  Fernando Herrera  <fherrera@onirica.com>
 
        * gtk/gtkbuilder.c: (gtk_builder_finalize),
index 48011b564a1d3a0c9d06947a0df4c37efd1888b2..7e32bac2bbdc570f960034b37dbaeb2ca10011ab 100644 (file)
@@ -689,7 +689,7 @@ gtk_notebook_class_init (GtkNotebookClass *class)
                                              g_param_spec_boolean ("tab-expand", 
                                                                    P_("Tab expand"), 
                                                                    P_("Whether to expand the child's tab or not"),
-                                                                   TRUE,
+                                                                   FALSE,
                                                                    GTK_PARAM_READWRITE));
   gtk_container_class_install_child_property (container_class,
                                              CHILD_PROP_TAB_FILL,